# Create an Editor Deep Link ### Authorization This endpoint requires an authorization header. Pass the access token from the [OAuth installation flow](https://dev.wix.com/api/rest/getting-started/authentication).

Permissions
This endpoint requires the Manage Your App permission scope.

  POST   https://www.wixapis.com/apps/v1/post-installation/editor-deep-link ### Body Params Name | Type | Description ---------|----------|---------   **customParams** | object |Array of key-value pairs | **key** | string | | **value** | string | ### Response Object Name | Type | Description ---------|----------|--------- **url** | URL | Deep Link URL ### Example #### Request ```CURL Curl -X POST \ https://www.wixapis.com/apps/v1/post-installation/editor-deep-link \ -H 'Authorization: ' -data-raw '{ "customParams": [ { "key1": "value1", "key2": "value2" } ] }' ``` #### Response ``` { "url": "https://www.wix.com/editor/8d157c7a-2cb8-4ea9-bf6f-3039e30099a3?appMarketParams=eyJraWQiOiJ5R0xVRVlVTiIsImFsZy.." } ``` ### Status/Error Codes The response will include an [HTTP status code](https://dev.wix.com/api/rest/getting-started/errors).